tempfile
A secure, cross-platform, temporary file library for Rust. In addition to creating temporary files, this library also allows users to securely open multiple independent references to the same temporary file (useful for consumer/producer patterns and surprisingly difficult to implement securely).
Usage
Minimum required Rust version: 1.63.0
Add this to your Cargo.toml
:
[]
= "3"
Example
use File;
use ;